home *** CD-ROM | disk | FTP | other *** search
- /*************************************************************************
- * *
- * SAMPLE1.C *
- * *
- *************************************************************************/
-
- #include <stdio.h>
-
-
- int second_function()
- {
- printf("\n\nHello ");
- return(1);
- }
- int third_function()
- {
- printf("World...\n");
- return(1);
- }